filterlistmodel: Make model not construct-only
authorMatthias Clasen <mclasen@redhat.com>
Fri, 3 Jul 2020 02:49:27 +0000 (22:49 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 3 Jul 2020 02:59:03 +0000 (22:59 -0400)
This property wasn't meant to be construct-only.

gtk/gtkfilterlistmodel.c

index 97db24fa827234e25b79b84e5534f3d742125ad5..af29154fcbe9b92b270866df6d84f7b43a810450 100644 (file)
@@ -684,7 +684,7 @@ gtk_filter_list_model_class_init (GtkFilterListModelClass *class)
                            P_("Model"),
                            P_("The model being filtered"),
                            G_TYPE_LIST_MODEL,
-                           GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_EXPLICIT_NOTIFY);
+                           GTK_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
 
   g_object_class_install_properties (gobject_class, NUM_PROPERTIES, properties);
 }